home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / gufw / controller.py next >
Text File  |  2009-10-25  |  1KB  |  36 lines

  1. # Gufw 9.10.4 - http://gufw.tuxfamily.org
  2. # Copyright (C) 2009 Marcos Alvarez Costales
  3. #
  4. # Gufw is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 3 of the License, or
  7. # (at your option) any later version.
  8. # Gufw is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with Gufw; if not, see http://www.gnu.org/licenses for more
  14. # information.
  15.  
  16.  
  17. from model.Firewall import Firewall
  18. from model.Variable import Variable
  19.  
  20.  
  21. class Controller:
  22.  
  23.     def __init__(self):
  24.         self.firewall = Firewall()
  25.         self.variable = Variable()
  26.  
  27.  
  28.     def get_firewall(self):
  29.         return self.firewall
  30.  
  31.  
  32.     def get_variable(self):
  33.         return self.variable
  34.